home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / program / gemxx19.zoo / gem++19 / include / gemfiw.h < prev    next >
C/C++ Source or Header  |  1993-10-26  |  1KB  |  42 lines

  1. /////////////////////////////////////////////////////////////////////////////
  2. //
  3. //  GEMformiconwindow
  4. //
  5. //  A GEMformiconwindow is a GEMformwindow which iconifies.
  6. //
  7. //  This file is Copyright 1992,1993 by Warwick W. Allison.
  8. //  This file is part of the gem++ library.
  9. //  You are free to copy and modify these sources, provided you acknowledge
  10. //  the origin by retaining this notice, and adhere to the conditions
  11. //  described in the file COPYING.LIB.
  12. //
  13. /////////////////////////////////////////////////////////////////////////////
  14.  
  15. #ifndef GEMfiw_h
  16. #define GEMfiw_h
  17.  
  18. #include <gemfw.h>
  19.  
  20. class GEMformiconwindow : public GEMformwindow
  21. {
  22. public:
  23.     GEMformiconwindow(GEMactivity& in, const GEMrsc& in, int RSCform, int RSCicon);
  24.     GEMformiconwindow(GEMactivity& in, const GEMrsc& in, int RSCform, int RSCicon, int Parts);
  25.     GEMformiconwindow(const GEMformiconwindow&);
  26.     virtual ~GEMformiconwindow();
  27.  
  28.     virtual void UserFulled();
  29.     virtual void Open();
  30.  
  31.     bool IsIconified() const;
  32.  
  33. protected:
  34.     virtual void IconOpened();
  35.  
  36. private:
  37.     friend class GEMiconformwindow;
  38.     class GEMiconformwindow* icon;
  39. };
  40.  
  41. #endif
  42.